home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / statone / readme.txt < prev    next >
Text File  |  1996-09-15  |  2KB  |  41 lines

  1. The zip file contains two components and a test app.
  2.  
  3. The first component (dynsort) encapsulates a dynamic array with a sort method. 
  4. It is based on work done by Frank Francone (dynamic array) and Erez Amir 
  5. (sorting). Basically, all I've done is to make the two work together. Specifically,
  6. I've incorporated Sorter.Pas into Dynarray.Pas.
  7.  
  8. I've included both author's original code so that you can see what I've 
  9. done, and more easily change or add to it. 
  10.  
  11. The second component (statone) adds univariate statistics such as the mean,
  12. standard deviation and percentiles. A couple of notes about the statistics:
  13.  
  14. The mean and higher order moments are calculated using a "one-pass provisional 
  15. means" approach. This results in higher accuracy, with little increase in
  16. computational time. 
  17.  
  18. The harmonic and geometric means use only values greater than zero. For 
  19. information on the Bisquare see the Help text in the sample app.
  20.  
  21. There is no documentation, as such. The source code of both the components
  22. and sample app should make most things pretty clear.
  23.  
  24. My code if freeware. I have used this project as a Delphi learning exercise,
  25. so I have not tested the statistical results as much as I would like. What 
  26. testing I have done is to compare about a dozen sets of random numbers
  27. against results obtained from the Electronic Handbook of Probability (if
  28. youÆre into stats, you might want to check eHOP out, contact Alan Bostrom,
  29. abostrom@netcom.com). If there are errors, they would likely occur under
  30. pathological conditions.
  31.  
  32. To install these components, put Dynary.Pas and Stat.Pas into a
  33. directory referenced by your Delphi library file name search path
  34. and add Stat to the lib.
  35.  
  36. If you have any questions/comments/problems, feel free to contact me.
  37.  
  38. -Ted Kahn
  39. 70353,2603
  40. tedkahn@interranp.com
  41.